home *** CD-ROM | disk | FTP | other *** search
- {|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-
- INIT
-
- |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||}
- procedure TGenericApp.PostInit ;
- {$IFDEF code}{$I input.src}{$ENDIF}
- var
- D : PDialog ;
- R : TRect ;
- begin
- FillChar ( DataArray , SizeOf ( DataArray ) , #0 ) ;
- D := New ( PForm , Init ( R , '' ) ) ;
- {$IFDEF code}
- CopyDialog ( MakeDialog ,
- D ) ;
- {$ELSE}
- CopyDialog ( PDIALOG ( RezFile^.Get ( 'DIALOG_INPUT' ) ) ,
- D ) ;
- {$ENDIF}
- SetStaticText ( D , FALSE ) ;
- SetBorder ( CRT.Blue ) ;
- Desktop^.Insert ( D ) ;
- ForceEvent ( evCommand , cmFirst ) ; { to show Rec # }
- end ;
-